home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWGraphx / Include / SLGrGlob.h < prev    next >
Encoding:
Text File  |  1996-04-25  |  1.3 KB  |  57 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                SLGrGlob.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef SLGRGLOB_H
  11. #define SLGRGLOB_H
  12.  
  13. #ifndef FWSTDDEF_H
  14. #include "FWStdDef.h"
  15. #endif
  16.  
  17. #ifndef SLGRDEF_H
  18. #include "SLGrDef.h"
  19. #endif
  20.  
  21. // Export or Import functions for CFM-68K [sfu]
  22.  
  23. #if defined(FW_ODFLIB_IMPORT)
  24. #pragma import on
  25. #elif defined(FW_ODFLIB)
  26. #pragma export on
  27. #endif
  28.  
  29. //========================================================================================
  30. //    Shared globals
  31. //========================================================================================
  32.  
  33. #ifdef FW_BUILD_MAC
  34. extern GrafPtr             FW_gScratchPort;
  35. #endif
  36.  
  37. //========================================================================================
  38. //    Functions
  39. //========================================================================================
  40.  
  41. FW_EXTERN_C_BEGIN
  42.  
  43. void    SL_API    FW_PrivInitializeGraphicsGlobals();
  44. void    SL_API    FW_PrivTerminateGraphicsGlobals();
  45.  
  46. FW_EXTERN_C_END
  47.  
  48. // For CFM-68K [sfu]
  49.  
  50. #if defined(FW_ODFLIB_IMPORT)
  51. #pragma import off
  52. #elif defined(FW_ODFLIB)
  53. #pragma export off
  54. #endif
  55.  
  56. #endif // SLGRGLOB_H
  57.